Fundamentals
Theorem
Let and be positive integers, and let . Suppose we have to place identical balls into identical boxes. Then there will be at least one box in which we place at least two balls.
Proof by Contradiction
Let us assume there is no box with at least two balls. Then each of the boxes has either 0 or 1 ball in it. Denote by the number of boxes that have zero balls in them; then certainly . Then, of course, there are boxes that have one. However, that would mean that the total number of balls placed into the boxes is which is a contradiction because we had to place balls into the boxes, and . Therefore, our assumption that there is no box with at least two balls must have been false.
Theorem (Generalized Pigeon-hole Principle)
Let , and be positive integers so that , and let us distribute identical balls into identical boxes. Then there will be at least one box into which we place at least balls.
Proof
Just as before, we assume the contrary statement. Then each of the boxes can hold at most balls, so all the boxes can hold at most balls, which contradicts the requirement that we distribute balls.
Components of Inductive Proof
Inductive proof is composed of 3 major parts : Base Case, Induction Hypothesis, Inductive Step.
- Base Case: One or more particular cases that represent the most basic case. (e.g. to prove a statement in the range of positive integer)
- Induction Hypothesis: Assumption that we would like to be based on. (e.g. Let's assume that holds)
- Inductive Step: Prove the next step based on the induction hypothesis. (i.e. Show that Induction hypothesis implies )
Weak Induction, Strong Induction
The difference between weak induction and strong indcution only appears in induction hypothesis. In weak induction, we only assume that particular statement holds at -th step, while in strong induction, we assume that the particular statment holds at all the steps from the base case to -th step.